home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 January / enter-2004-01.iso / files / maxima-5.9.0.exe / {app} / share / maxima / 5.9.0 / src / numerical / slatec / d9lgmc.lisp < prev    next >
Encoding:
Text File  |  2003-02-09  |  2.8 KB  |  64 lines

  1. ;;; Compiled by f2cl version 2.0 beta 2002-05-06
  2. ;;; 
  3. ;;; Options: ((:prune-labels nil) (:auto-save t) (:relaxed-array-decls t)
  4. ;;;           (:coerce-assigns :as-needed) (:array-type ':simple-array)
  5. ;;;           (:array-slicing nil) (:declare-common nil)
  6. ;;;           (:float-format double-float))
  7.  
  8. (in-package "SLATEC")
  9.  
  10.  
  11. (let ((nalgm 0)
  12.       (xbig 0.0)
  13.       (xmax 0.0)
  14.       (algmcs (make-array 15 :element-type 'double-float))
  15.       (first nil))
  16.   (declare (type f2cl-lib:logical first)
  17.            (type (simple-array double-float (15)) algmcs)
  18.            (type double-float xmax xbig)
  19.            (type f2cl-lib:integer4 nalgm))
  20.   (f2cl-lib:fset (f2cl-lib:fref algmcs (1) ((1 15))) 0.16663894804518634)
  21.   (f2cl-lib:fset (f2cl-lib:fref algmcs (2) ((1 15))) -1.3849481760675642e-5)
  22.   (f2cl-lib:fset (f2cl-lib:fref algmcs (3) ((1 15))) 9.810825646924729e-9)
  23.   (f2cl-lib:fset (f2cl-lib:fref algmcs (4) ((1 15))) -1.8091294755724946e-11)
  24.   (f2cl-lib:fset (f2cl-lib:fref algmcs (5) ((1 15))) 6.221098041892607e-14)
  25.   (f2cl-lib:fset (f2cl-lib:fref algmcs (6) ((1 15))) -3.399615005417722e-16)
  26.   (f2cl-lib:fset (f2cl-lib:fref algmcs (7) ((1 15))) 2.683181998482699e-18)
  27.   (f2cl-lib:fset (f2cl-lib:fref algmcs (8) ((1 15))) -2.8680424353346434e-20)
  28.   (f2cl-lib:fset (f2cl-lib:fref algmcs (9) ((1 15))) 3.962837061046434e-22)
  29.   (f2cl-lib:fset (f2cl-lib:fref algmcs (10) ((1 15))) -6.831888753985766e-24)
  30.   (f2cl-lib:fset (f2cl-lib:fref algmcs (11) ((1 15))) 1.4292273559424978e-25)
  31.   (f2cl-lib:fset (f2cl-lib:fref algmcs (12) ((1 15))) -3.547598158101071e-27)
  32.   (f2cl-lib:fset (f2cl-lib:fref algmcs (13) ((1 15))) 1.0256800580104711e-28)
  33.   (f2cl-lib:fset (f2cl-lib:fref algmcs (14) ((1 15))) -3.401102254316749e-30)
  34.   (f2cl-lib:fset (f2cl-lib:fref algmcs (15) ((1 15))) 1.2766421956300628e-31)
  35.   (setq first f2cl-lib:%true%)
  36.   (defun d9lgmc (x)
  37.     (declare (type double-float x))
  38.     (prog ((d9lgmc 0.0))
  39.       (declare (type double-float d9lgmc))
  40.       (cond
  41.        (first
  42.         (setf nalgm (initds algmcs 15 (f2cl-lib:freal (f2cl-lib:d1mach 3))))
  43.         (setf xbig (/ 1.0 (f2cl-lib:fsqrt (f2cl-lib:d1mach 3))))
  44.         (setf xmax
  45.                 (exp
  46.                  (min (f2cl-lib:flog (/ (f2cl-lib:d1mach 2) 12.0))
  47.                       (- (f2cl-lib:flog (* 12.0 (f2cl-lib:d1mach 1)))))))))
  48.       (setf first f2cl-lib:%false%)
  49.       (if (< x 10.0) (xermsg "SLATEC" "D9LGMC" "X MUST BE GE 10" 1 2))
  50.       (if (>= x xmax) (go label20))
  51.       (setf d9lgmc (/ 1.0 (* 12.0 x)))
  52.       (if (< x xbig)
  53.           (setf d9lgmc
  54.                   (/ (dcsevl (- (* 2.0 (expt (/ 10.0 x) 2)) 1.0) algmcs nalgm)
  55.                      x)))
  56.       (go end_label)
  57.      label20
  58.       (setf d9lgmc 0.0)
  59.       (xermsg "SLATEC" "D9LGMC" "X SO BIG D9LGMC UNDERFLOWS" 2 1)
  60.       (go end_label)
  61.      end_label
  62.       (return (values d9lgmc nil)))))
  63.  
  64.